home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-11-04 | 470 b | 31 lines | [TEXT/CWIE] |
- PROGRAM GetInclusionBitstring;
-
- {$IFC FALSE}
- USES Types, QuickDraw, OSUtils, SegLoad, Fonts, Windows, Menus, TextEdit, Dialogs,
- Processes, Events, QuickDrawText,
- StandardFile,
- PasLibIntf,
- CumeCommon;
- {$ENDC}
-
- uses Calcs;
-
-
-
-
- PROCEDURE DoIt;
- var a,b,c,total:double;
- BEGIN
- writeln('Hello World.');
- a := 123.0;
- b := 222;
- c := 543.0;
- Add3Doubles(a,b,c,total);
- writeln('Total: ', total:15:3);
- readln;
- END;
-
-
- BEGIN
- DoIt;
- END.